/* ********** Java example code snippet; code(16) ********** */
feed.setEntries(entries); /* add the entries array to the feed */
for (int i=1;i<args.length;i++) { /* loop to insert all feeds */
URL inputUrl = new URL(args[i]);
SyndFeedInput input = new SyndFeedInput();
SyndFeed inFeed = input.build(new XmlReader(inputUrl));
entries.addAll(inFeed.getEntries());
// add the entries of the fetched "infeed" to the created feed ...*/
}
/* ************************************************************************************** */